home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / READCHAR.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  1KB  |  50 lines

  1.                             /* Chapter 10 - Program 3 - READCHAR.C */
  2. #include "stdio.h"
  3. #include "stdlib.h"
  4.  
  5. void main()
  6. {
  7. FILE *funny;
  8. char c;
  9.  
  10.    funny = fopen("TENLINES.TXT", "r");
  11.  
  12.    if (funny == NULL) {
  13.       printf("File doesn't exist\n");
  14.       exit;
  15.    } else {
  16.       do {
  17.          c = getc(funny);    /* get one character from the file */
  18.          putchar(c);         /* display it on the monitor       */
  19.       } while (c != EOF);    /* repeat until EOF (end of file)  */
  20.    }
  21.    fclose(funny);
  22. }
  23.  
  24.  
  25.  
  26. /* Result of execution
  27.  
  28. This is an example line.  Line number 1
  29. This is an example line.  Line number 2
  30. This is an example line.  Line number 3
  31. This is an example line.  Line number 4
  32. This is an example line.  Line number 5
  33. This is an example line.  Line number 6
  34. This is an example line.  Line number 7
  35. This is an example line.  Line number 8
  36. This is an example line.  Line number 9
  37. This is an example line.  Line number 10
  38. Additional lines.
  39. Additional lines.
  40. Additional lines.
  41. Additional lines.
  42. Additional lines.
  43. Additional lines.
  44. Additional lines.
  45. Additional lines.
  46. Additional lines.
  47. Additional lines.
  48.  
  49. */
  50.